home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / PInterfaces / PCI.p < prev    next >
Text File  |  1996-05-01  |  5KB  |  170 lines

  1. {
  2.      File:        PCI.p
  3.  
  4.      Contains:    PCI Bus Interfaces.
  5.  
  6.      Version:    Technology:    PowerSurge 1.0.2
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. }
  18. {$IFC UNDEFINED UsingIncludes}
  19. {$SETC UsingIncludes := 0}
  20. {$ENDC}
  21.  
  22. {$IFC NOT UsingIncludes}
  23.  UNIT PCI;
  24.  INTERFACE
  25. {$ENDC}
  26.  
  27. {$IFC UNDEFINED __PCI__}
  28. {$SETC __PCI__ := 1}
  29.  
  30. {$I+}
  31. {$SETC PCIIncludes := UsingIncludes}
  32. {$SETC UsingIncludes := 1}
  33.  
  34. {$IFC UNDEFINED __TYPES__}
  35. {$I Types.p}
  36. {$ENDC}
  37. {$IFC UNDEFINED __NAMEREGISTRY__}
  38. {$I NameRegistry.p}
  39. {$ENDC}
  40.  
  41. {$PUSH}
  42. {$ALIGN MAC68K}
  43. {$LibExport+}
  44.  
  45. {$IFC FOR_SYSTEM7_AND_SYSTEM8_PREEMPTIVE }
  46. {  Types and structures for accessing the PCI Assigned-Address property. }
  47.  
  48. CONST
  49.     kPCIRelocatableSpace        = $80;
  50.     kPCIPrefetchableSpace        = $40;
  51.     kPCIAliasedSpace            = $20;
  52.     kPCIAddressTypeCodeMask        = $03;
  53.     kPCIConfigSpace                = 0;
  54.     kPCIIOSpace                    = 1;
  55.     kPCI32BitMemorySpace        = 2;
  56.     kPCI64BitMemorySpace        = 3;
  57.  
  58.  
  59. TYPE
  60.     PCIAddressSpaceFlags                = UInt8;
  61.  
  62. CONST
  63.     kPCIDeviceNumberMask        = $1F;
  64.     kPCIFunctionNumberMask        = $07;
  65.  
  66.  
  67. TYPE
  68.     PCIDeviceFunction                    = UInt8;
  69.     PCIBusNumber                        = UInt8;
  70.     PCIRegisterNumber                    = UInt8;
  71.     PCIAssignedAddressPtr = ^PCIAssignedAddress;
  72.     PCIAssignedAddress = PACKED RECORD
  73.         addressSpaceFlags:        PCIAddressSpaceFlags;
  74.         busNumber:                PCIBusNumber;
  75.         deviceFunctionNumber:    PCIDeviceFunction;
  76.         registerNumber:            PCIRegisterNumber;
  77.         address:                UnsignedWide;
  78.         size:                    UnsignedWide;
  79.     END;
  80.  
  81. FUNCTION EndianSwap16Bit(data16: UInt16): UInt16;
  82.     {$IFC NOT GENERATINGCFM}
  83.     INLINE $301F, $E158, $3E80;
  84.     {$ENDC}
  85. FUNCTION EndianSwap32Bit(data32: UInt32): UInt32;
  86.     {$IFC NOT GENERATINGCFM}
  87.     INLINE $201F, $E158, $4840, $E158, $2E80;
  88.     {$ENDC}
  89. {$ENDC}
  90. {$IFC FOR_SYSTEM7_AND_SYSTEM8_DEPRECATED }
  91. FUNCTION ExpMgrConfigReadByte(node: RegEntryIDPtr; configAddr: LogicalAddress; VAR valuePtr: UInt8): OSErr;
  92.     {$IFC NOT GENERATINGCFM}
  93.     INLINE $303C, $0620, $AAF3;
  94.     {$ENDC}
  95. FUNCTION ExpMgrConfigReadWord(node: RegEntryIDPtr; configAddr: LogicalAddress; VAR valuePtr: UInt16): OSErr;
  96.     {$IFC NOT GENERATINGCFM}
  97.     INLINE $303C, $0621, $AAF3;
  98.     {$ENDC}
  99. FUNCTION ExpMgrConfigReadLong(node: RegEntryIDPtr; configAddr: LogicalAddress; VAR valuePtr: UInt32): OSErr;
  100.     {$IFC NOT GENERATINGCFM}
  101.     INLINE $303C, $0622, $AAF3;
  102.     {$ENDC}
  103. FUNCTION ExpMgrConfigWriteByte(node: RegEntryIDPtr; configAddr: LogicalAddress; value: ByteParameter): OSErr;
  104.     {$IFC NOT GENERATINGCFM}
  105.     INLINE $303C, $0523, $AAF3;
  106.     {$ENDC}
  107. FUNCTION ExpMgrConfigWriteWord(node: RegEntryIDPtr; configAddr: LogicalAddress; value: UInt16): OSErr;
  108.     {$IFC NOT GENERATINGCFM}
  109.     INLINE $303C, $0524, $AAF3;
  110.     {$ENDC}
  111. FUNCTION ExpMgrConfigWriteLong(node: RegEntryIDPtr; configAddr: LogicalAddress; value: UInt32): OSErr;
  112.     {$IFC NOT GENERATINGCFM}
  113.     INLINE $303C, $0625, $AAF3;
  114.     {$ENDC}
  115. FUNCTION ExpMgrIOReadByte(node: RegEntryIDPtr; ioAddr: LogicalAddress; VAR valuePtr: UInt8): OSErr;
  116.     {$IFC NOT GENERATINGCFM}
  117.     INLINE $303C, $0626, $AAF3;
  118.     {$ENDC}
  119. FUNCTION ExpMgrIOReadWord(node: RegEntryIDPtr; ioAddr: LogicalAddress; VAR valuePtr: UInt16): OSErr;
  120.     {$IFC NOT GENERATINGCFM}
  121.     INLINE $303C, $0627, $AAF3;
  122.     {$ENDC}
  123. FUNCTION ExpMgrIOReadLong(node: RegEntryIDPtr; ioAddr: LogicalAddress; VAR valuePtr: UInt32): OSErr;
  124.     {$IFC NOT GENERATINGCFM}
  125.     INLINE $303C, $0628, $AAF3;
  126.     {$ENDC}
  127. FUNCTION ExpMgrIOWriteByte(node: RegEntryIDPtr; ioAddr: LogicalAddress; value: ByteParameter): OSErr;
  128.     {$IFC NOT GENERATINGCFM}
  129.     INLINE $303C, $0529, $AAF3;
  130.     {$ENDC}
  131. FUNCTION ExpMgrIOWriteWord(node: RegEntryIDPtr; ioAddr: LogicalAddress; value: UInt16): OSErr;
  132.     {$IFC NOT GENERATINGCFM}
  133.     INLINE $303C, $052A, $AAF3;
  134.     {$ENDC}
  135. FUNCTION ExpMgrIOWriteLong(node: RegEntryIDPtr; ioAddr: LogicalAddress; value: UInt32): OSErr;
  136.     {$IFC NOT GENERATINGCFM}
  137.     INLINE $303C, $062B, $AAF3;
  138.     {$ENDC}
  139. FUNCTION ExpMgrInterruptAcknowledgeReadByte(entry: RegEntryIDPtr; VAR valuePtr: UInt8): OSErr;
  140.     {$IFC NOT GENERATINGCFM}
  141.     INLINE $303C, $0411, $AAF3;
  142.     {$ENDC}
  143. FUNCTION ExpMgrInterruptAcknowledgeReadWord(entry: RegEntryIDPtr; VAR valuePtr: UInt16): OSErr;
  144.     {$IFC NOT GENERATINGCFM}
  145.     INLINE $303C, $0412, $AAF3;
  146.     {$ENDC}
  147. FUNCTION ExpMgrInterruptAcknowledgeReadLong(entry: RegEntryIDPtr; VAR valuePtr: UInt32): OSErr;
  148.     {$IFC NOT GENERATINGCFM}
  149.     INLINE $303C, $0413, $AAF3;
  150.     {$ENDC}
  151. FUNCTION ExpMgrSpecialCycleWriteLong(entry: RegEntryIDPtr; value: UInt32): OSErr;
  152.     {$IFC NOT GENERATINGCFM}
  153.     INLINE $303C, $0419, $AAF3;
  154.     {$ENDC}
  155. FUNCTION ExpMgrSpecialCycleBroadcastLong(value: UInt32): OSErr;
  156.     {$IFC NOT GENERATINGCFM}
  157.     INLINE $303C, $021A, $AAF3;
  158.     {$ENDC}
  159. {$ENDC}
  160. {$ALIGN RESET}
  161. {$POP}
  162.  
  163. {$SETC UsingIncludes := PCIIncludes}
  164.  
  165. {$ENDC} {__PCI__}
  166.  
  167. {$IFC NOT UsingIncludes}
  168.  END.
  169. {$ENDC}
  170.